05f5c200a67d98aeb63bc62780d8b11673b60c3f,EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/view/control/DataSetSelector.java,DataSetSelector,getAddButton,#,273

Before Change


			addButton.setToolTipText("Add Signature Gene Sets...");
			
			if (isAquaLAF()) {
				addButton.putClientProperty("JButton.buttonType", "gradient");
				addButton.putClientProperty("JComponent.sizeVariant", "small");
			}
		}
		

After Change


	
	JButton getAddButton() {
		if (addButton == null) {
			addButton = new JButton(" " + IconManager.ICON_PLUS + " ");
			addButton.setFont(serviceRegistrar.getService(IconManager.class).getIconFont(11.0f));
			addButton.setToolTipText("Add Signature Gene Sets...");
			makeSmall(addButton);
			
			if (isAquaLAF())
				addButton.putClientProperty("JButton.buttonType", "gradient");
		}
		
		return addButton;